---CPRE CUSTOMIZATION---
Just a quick guide on changing some popular settings, if you want to know how to change something else. Feel free to make a comment and I'll add it to the readme in future versions.

---CHANGING SPAWN AMOUNTS---

1. After choosing which version and optional files you are using. EG: main file > no army > optional files you want. 

2. Open dispatch.meta 

3. Scroll down to <WantedResponses> around line 926

4. Each Wanted Level is represented here (1-5). For example, if you want to reduce the amount of soldiers spawning at 5 stars. Scroll down to...

<WantedLevel5>
			<DispatchServices>
				<Item>
					<DispatchType>DT_PoliceAutomobile</DispatchType>
					<NumPedsToSpawn value="24"/>                      <--------------------------------------- This value here is for the Jeeps and Soldiers. 1 Pair = 1 vehicle, Default value is 12 Vehicles. 
					<DispatchVehicleSets>
						<Dispatch>ARMY_CAR</Dispatch>	
					</DispatchVehicleSets>
				</Item>
				<Item>
					<DispatchType>DT_PoliceHelicopter</DispatchType>
					<NumPedsToSpawn value="6"/>                       <---------------------------------------- This value here is for the helicopters. 3 = 1 Vehicle in this case. Default value is 2 helicopters. 
					<DispatchVehicleSets>
						<Dispatch>ARMY_HELI</Dispatch>
					</DispatchVehicleSets>
				</Item>
				<Item>
					<DispatchType>DT_PoliceRoadBlock</DispatchType>
					<NumPedsToSpawn value="4"/>                      <---------------------------------------- This value here is for the amount of people at roadblocks. Higher than 4 equals bugs. Leave this alone. 
					<DispatchVehicleSets>
						<Dispatch>ARMY_ROAD_BLOCK_CARS</Dispatch>
						<Dispatch>ARMY_ROAD_BLOCK_TRUCK</Dispatch>
					</DispatchVehicleSets>
				</Item>
				<Item>
					<DispatchType>DT_PoliceBoat</DispatchType>
					<NumPedsToSpawn value="12"/>                <---------------------------------------- This value here is for the Boats. 1 Pair = 1 vehicle, Default value is 12 Vehicles. 
					<DispatchVehicleSets>
						<Dispatch>POLICE_BOAT</Dispatch>
					</DispatchVehicleSets>
				</Item>
			</DispatchServices>
</WantedLevel5>


----CHANGING WHAT SPAWNS AT WHAT WANTED LEVEL----

1. In the same area of dispatch.meta, lies what spawns at what wanted level.
2. To see available vehicle spawns, go to the <VehicleSets> section of dispatch.meta around line 182. You can add your own vehicles here too, be aware most are buggy. Ones that I'm not already using, are definitely buggy. 

<WantedLevel4>
			<DispatchServices>
				<Item>
					<DispatchType>DT_PoliceAutomobile</DispatchType>
					<NumPedsToSpawn value="12"/>
					<DispatchVehicleSets>
						<Dispatch>POLICE_DETECTIVE</Dispatch>	 <---------------------------------------- This is the FIB at 4 stars, If I want to change it to police. I simply change the POLICE_DETECTIVE value to something else defined in <VehicleSets> (See step 2)
					</DispatchVehicleSets>
				</Item>
				<Item>
					<DispatchType>DT_SwatAutomobile</DispatchType>
					<NumPedsToSpawn value="8"/>
					<DispatchVehicleSets>
						<Dispatch>SWAT_JEEP</Dispatch>  <---------------------------------------- This is the NOOSE at 4 stars
					</DispatchVehicleSets>
				</Item>
				<Item>
					<DispatchType>DT_PoliceHelicopter</DispatchType>
					<NumPedsToSpawn value="3"/>
					<DispatchVehicleSets>
						<Dispatch>POLICE_HELI_2</Dispatch>
					</DispatchVehicleSets>
				</Item>
				<Item>
					<DispatchType>DT_SwatHelicopter</DispatchType>
					<NumPedsToSpawn value="5"/>
					<DispatchVehicleSets>
						<Dispatch>POLICE_HELI_1</Dispatch>
					</DispatchVehicleSets>
				</Item>
				<Item>
					<DispatchType>DT_PoliceRoadBlock</DispatchType>
					<NumPedsToSpawn value="4"/>
					<DispatchVehicleSets>
						<Dispatch>POLICE_ROAD_BLOCK_FBI</Dispatch>
						<Dispatch>POLICE_ROAD_BLOCK_FBI</Dispatch>
						<Dispatch>POLICE_ROAD_BLOCK_RIOT</Dispatch>
						<Dispatch>POLICE_ROAD_BLOCK_SPIKE_STRIP</Dispatch>
						<Dispatch>POLICE_ROAD_BLOCK_FBI</Dispatch>
						<Dispatch>POLICE_ROAD_BLOCK_SWAT</Dispatch>
						<Dispatch>POLICE_ROAD_BLOCK_CARS</Dispatch>
						<Dispatch>POLICE_ROAD_BLOCK_FBI</Dispatch>
					</DispatchVehicleSets>
				</Item>
				<Item>
					<DispatchType>DT_PoliceBoat</DispatchType>
					<NumPedsToSpawn value="9"/>
					<DispatchVehicleSets>
						<Dispatch>POLICE_BOAT</Dispatch>
					</DispatchVehicleSets>
				</Item>
			</DispatchServices>
</WantedLevel4>
